*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}


#bars{
    display: none;
}
/*Navbar Button Design*/

.button1{
    background-color:springgreen;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid transparent;
    border-radius: 5px;
    color: rgb(0, 0, 0);
    font-family: 'Ysabeau SC', sans-serif;
}

.button1:hover{
    background-color: transparent;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 1px 5px 10px springgreen;
    color: rgb(255, 255, 255);
    font-family: 'Ysabeau SC', sans-serif;
}

.button2{
    background-color: transparent;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-family: 'Ysabeau SC', sans-serif;
}

.button2:hover{
    background-color: rgb(255, 255, 255);
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid transparent;
    border-radius: 5px;
    box-shadow: 1px 5px 10px rgba(255, 255, 255, 0.499);
    color: rgb(0, 0, 0);
    font-family: 'Ysabeau SC', sans-serif;
}

.text-springgreen{
    color: springgreen;
    text-decoration: rgb(255, 238, 0) underline;
}


/*res navbar*/

.res-navbar{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    gap: 40px;
    border: 1px soldi transparent;
    border-radius: 33px;
    padding-block: 50px;
    box-shadow: 1px 3px 10px black;
    background-color: azure;
    position: absolute;
    left: -100%;
    transition: ease;
    transition-duration: 0.2s;
}

.res-navbar.active {
    left: 5%;
}

#res-navbar-list{
    list-style: none;
    font-size: 2rem;
    line-height: 40px;
    color: black!important;
}

/*Top banner css*/

#top-banner{
    width: 100%;
    background-color: blue;
    background-image: url("assets/image/bannerback.jpg");
    background-size: 250px;
    background-repeat: repeat;
}

#overlay-div-banner{
    font-size: 0.8rem;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    color: rgb(255, 255, 255);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.532);
}

#overlay-hero{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.463);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}

/*Navbar CSS*/

nav{
    width: 100%;
}

#navbar-container{
    width: 90%;
    margin-inline: auto;
    padding-inline: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-block: 20px;
    align-content: center;
    overflow: hidden;
}

#navbar-list{
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    align-content: center;
}

#navbar-left-section{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    align-content: center;
}

#navbar-right-section{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

a{
    text-decoration: none;
    font-family:'Roboto', sans-serif;
    font-size: 0.9rem;
    color: white;
}

a:hover{
    text-decoration: none;
    font-family:'Roboto', sans-serif;
    font-size: 0.9rem;
    color: springgreen;
}

#hero-section{
    width: 100%;
    height: auto;
    background-color: purple;
    background-image: url("assets/image/back2.jpg")!important;
    background-size: cover;
    background-position: center;
}

#how-hero-section{
    width: 100%;
    height: auto;
    background-color: purple;
    background-image: url("assets/image/howback.jpg")!important;
    background-size: cover;
    background-position: center;
}

/*LOGO CSS*/
#logo-h1{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
}

#text-khelo{
    color: white;
    font-family: 'Ysabeau SC', sans-serif;
}

#text-zi{
    color: rgb(255, 44, 44);
    font-family: 'Ysabeau SC', sans-serif;
}

/*hero head section css*/

#hero-head-section{
    width: 90%;
    margin-inline: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}

#hero-head-left-section{
    width: 55%;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

#hero-head-left-section-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

#hero-head-left-section-text h2{
    font-size: 2rem;
}

#hero-head-left-section-text h1{
    font-size: 4rem;
}

#hero-head-right-section{
    width: 40%;
    height: 550px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

#hero-button{
    width: 60%;
    height: auto;
    background-color: springgreen;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 33px;
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(17, 17, 17);
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: ease;
    transition-duration: 0.6s;
}

#hero-button:hover{
    width: 75%;
    height: auto;
    background-color: springgreen;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 33px;
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(17, 17, 17);
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0px, 5px, 15px rgb(0, 255, 242);
}


#mobile-nav-button{
    display: none;
    /*width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;*/
}

.mobile-button1{
    width: 50%;
    background-color:springgreen;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid transparent;
    border-radius: 5px;
    color: rgb(0, 0, 0);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1rem;
}

.mobile-button2{
    width: 40%;
    background-color: transparent;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1rem;
}

.mobile-button1:hover{
    width: 50%;
    background-color:transparent;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1rem;
    box-shadow: 1px 5px 10px springgreen;
}

.mobile-button2:hover{
    width: 40%;
    background-color: white;
    padding-block: 15px;
    padding-inline: 25px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    color: rgb(0, 0, 0);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1rem;
    box-shadow: 1px 5px 10px rgb(255, 255, 255);
}
/*feature section*/

#different-feature-section{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
    margin-top: 60px;
    padding-inline: 20px;
    padding-bottom: 40px;
}

#different-text-h1{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

#different-text-p{
    font-family:'Roboto', sans-serif;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 25px;
}

#different-text{
    padding-bottom: 100px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    gap: 25px;
}

#different-feature-data{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 100px;
    flex-wrap: wrap;
    align-content: center;
}

.different-feature-data-entry{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    transition: ease;
    transition-duration: 0.2s;
}

.different-feature-data-entry:hover{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    scale: 1.2;
}

.different-feature-data-entry-h1{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    padding-top: 20px;
}

.different-feature-data-entry-p{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/*Eight Feature Section*/

#eight-feature-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 40px;
    padding-block: 90px;
    background-color: rgba(0, 0, 0, 0.481);
    
}

#eight-feature-image-back{
    width: 100%;
    height: auto;
    background-image: url("assets/image/backimage-min.png");
    background-position: center;
    background-size: cover;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
}

#eight-feature-top{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-inline: auto;
}
#eight-feature-bottom{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-inline: auto;
}

.eight-feature-card{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    border: 1px solid transparent;
    border-radius: 33px;
    padding: 20px;
    gap: 15px;
    overflow: hidden;
    transition: ease;
    transition-duration: 0.2s;
}

.eight-feature-card:hover{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    border: 1px solid transparent;
    border-radius: 33px;
    padding: 20px;
    gap: 15px;
    overflow: hidden;
    scale: 1.1;
}

.eight-feature-h3{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
}

#eight-feature-heading{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: white;
    padding-bottom: 30px;
}

.eight-feature-card p{
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
}

#eight-feature-card-1{
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lemonchiffon;
}

#eight-feature-card-2{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lightblue;
}

#eight-feature-card-3{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lightcoral;
}

#eight-feature-card-4{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lightgreen;
}

#eight-feature-card-5{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lightpink;
}

#eight-feature-card-6{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lightskyblue;
}

#eight-feature-card-7{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px lightsalmon;
}

#eight-feature-card-8{
    background-color:rgb(255, 255, 255);
    box-shadow: 2px 5px 10px rgb(255, 255, 130);
}

#eight-feature-card-1:hover{
    background-color: lemonchiffon;
    box-shadow: 2px 5px 10px lemonchiffon;
}

#eight-feature-card-2:hover{
    background-color:lightblue;
    box-shadow: 2px 5px 10px lightblue;
}

#eight-feature-card-3:hover{
    background-color:lightcoral;
    box-shadow: 2px 5px 10px lightcoral;
}

#eight-feature-card-4:hover{
    background-color:lightgreen;
    box-shadow: 2px 5px 10px lightgreen;
}

#eight-feature-card-5:hover{
    background-color:lightpink;
    box-shadow: 2px 5px 10px lightpink;
}

#eight-feature-card-6:hover{
    background-color:lightskyblue;
    box-shadow: 2px 5px 10px lightskyblue;
}

#eight-feature-card-7:hover{
    background-color:lightsalmon;
    box-shadow: 2px 5px 10px lightsalmon;
}

#eight-feature-card-8:hover{
    background-color:rgb(255, 255, 130);
    box-shadow: 2px 5px 10px rgb(255, 255, 130);
}


/*Three step section*/

#three-step-section{
    width: 100%;
    height: auto;
    background-image: url("assets/image/bannerback.jpg");
    background-size: 250px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

#three-step-overlay{
    width: 100%;
    margin-inline: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.655);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    gap: 50px;
    padding-block: 80px;
}

#step-data{
    width: 90%;
    margin-inline: auto;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
}

.step-data-entry{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    gap: 25px;
    width: 25%;
    overflow: hidden;
}

.step-data-entry-p{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
}

.step-data-entry-h1{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    line-height: 1.5rem;
    text-align: center;
}


#step-text-h1{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    line-height: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

#step-text-p{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
}

/* refer and earn */

#referandearn-section{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    margin-block: 100px;
}

#refer-container{
    width: 900px;
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: flex-start;
    background-image: url("assets/image/ladki.png");
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
}

#refer-text-container{
    width: 400px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

#refer-text-container h1{
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    line-height: 1.5rem;
    text-align: center;
}
#refer-text-container h2{
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 1.5rem;
    text-align: center;
    border: 1px sold transparent;
    border-radius: 33px;
    box-shadow: 1px 3px 12px springgreen;
    padding-block: 40px;
    overflow: hidden;
    margin-top: 30px;
    transition: ease;
    transition-duration: 0.2s;
}

#refer-text-container h2:hover{
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 1.5rem;
    text-align: center;
    border: 1px sold transparent;
    border-radius: 33px;
    box-shadow: 1px 3px 12px springgreen;
    padding-block: 40px;
    overflow: hidden;
    margin-top: 30px;
    background-color: springgreen;
}


/*footer css*/

footer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 48, 24));
    background-size: 250px;
}

#overlay-footer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    padding-block: 30px;
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 48, 24));
}

#footer-container{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
}

#footer-about-us{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 20px;
}

.footer-links{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
}

.footer-links h3{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

#footer-about-us p{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
}

/*accodian*/

.accordian-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    padding: 20px;
    margin-block: 70px;
}

.accordian{
    max-width: 700px;
    padding-inline: 30px;
    padding-block: 20px;
    margin-bottom: 50px;
    border: 1px solid transparent;
    border-radius: 33px;
    box-shadow: 1px 3px 15px springgreen;
    cursor:pointer;
}

.accordian:hover{
    max-width: 700px;
    padding-inline: 30px;
    padding-block: 20px;
    margin-bottom: 50px;
    border: 1px solid transparent;
    border-radius: 33px;
    box-shadow: 1px 3px 15px rgb(255, 0, 153);
    cursor:pointer;
}

.question{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.question h2{
    max-width: 85%;
}

.answer{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 25px;
    max-height: 0px;
    overflow: hidden;
    transition: ease;
    transition-duration: 0.5s;
}

.icon.active{
    transform: rotate(180deg);
}

.answer.active{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 25px;
    max-height: fit-content;
    transition: ease;
    transition-duration: 0.5s;
    overflow: hidden;
}

.accordian-container h1{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

/*how page*/

#how-hero-head-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    padding: 20px;
    margin-block: 70px;
}

#how-hero-head-container h1{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: white;   
    margin-top: 30px;
    margin-bottom: 50px;
}

/*sub footer*/

#copyright{
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 48, 24));
}

#copyright p{
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    line-height: 25px;
    max-height: fit-content;
    color:rgba(250, 235, 215, 0.811);
    text-align: center;
}

#sub-footer{
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 48, 24));
    gap: 30px;
}

#sub-footer p{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 25px;
    max-height: fit-content;
    color:rgb(255, 255, 255);
    text-align: center;
}

/*contact page*/

#contact-hero-head-container{
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
    gap: 50px;
    padding: 10px;
}


#con-hero-head-left{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 20px;
}


#con-hero-head-right{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    padding-top: 40px;
}

#con-hero-head-left p{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 25px;
    color:rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 15px;
}

#con-hero-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-image: linear-gradient(100deg, black, rgb(0, 0, 79));
}

#con-hero-left-btn-div{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

#con-hero-head-left #other-options{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: wrap;
    align-content: center;
    align-items: center;
}

#con-hero-head-left #other-options h2{
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 25px;
    color:rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 35px;
    margin-top: 40px;
}

#con-hero-head-left #other-options p{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 25px;
    color:rgb(255, 255, 255);
    text-align: center;
}

#con-hero-head-right h1{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: white;   
    margin-top: 30px;
    margin-bottom: 10px;
}

#con-hero-head-right p{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 25px;
    color:rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 40px;
}

.form-p{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 25px;
    color:rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 10px!important;
    margin-top: 20px;
}

.con-in{
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 33px;
    width: 100%;
}

#con-hero-head-right form{
    width: 90%;
}

.text-area{
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 33px;
    width: 100%;
}

.submit{
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 33px;
    width: 100%;
    margin-inline: auto;
    margin-block: 30px;
    background-color: rgb(139, 139, 255);
    cursor: pointer;
}

#office-address{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    color: white;
    padding-block: 20px;
    gap: 15px;
}

#office-address h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    color: white;   
    font-weight: 500;
}

#office-address p{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 25px;
    color:rgb(255, 255, 255);
    text-align: center;
}

/*about us page*/

#about-hero-section{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    background-image: url("assets/image/moon.jpg");
    background-position: center;
    background-size: cover;
}

#overlay-hero-about{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    background-image: linear-gradient(to right, black, transparent);
}


#about-hero-head-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    overflow: hidden;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

#about-hero-head-container h1{
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    text-align: center;
    color: white;   
    padding: 5px;
}

#about-hero-head-container p{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    color: white;   
    margin-bottom: 70px;
}

#team-photo-section{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
    overflow: hidden;
}

#team-photo-1-left{
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 50%;
    background-image: url("assets/image/about-ceo.jpg");
    box-shadow: 1px 5px 15px rgb(255, 255, 255);
    background-position: center;
    background-size: cover;
    filter:grayscale(100%);
}


#team-photo-1-left:hover{
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 50%;
    background-image: url("assets/image/about-ceo.jpg");
    box-shadow: 1px 5px 15px rgb(0, 140, 255);
    background-position: center;
    background-size: cover;
    filter:none;
}


#team-photo-1-right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}


#blacktext{
    width: 80%;
    height: auto;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    margin-inline: auto;
    border: 1px solid transparent;
    border-radius: 33px;
    position: relative;
    top: -60px;
    box-shadow: 1px 4px 15px gold;
}

#blacktext h1{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: rgb(5, 0, 27);   
}

#blacktext p{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    color: rgb(0, 0, 0);   
    font-weight: 500;
}

.more-heading{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: rgb(0, 0, 0);   
    margin-block: 30px;
}


.more-para{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 25px;
    color:rgb(0, 0, 0);
    text-align: center;
    margin-bottom: 40px;
    padding-inline: 40px;
    width: 70%;
    align-self: center;
    margin-inline: auto;
}